home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / include / amiga20 / clib / wb_protos.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-11  |  1.8 KB  |  59 lines

  1. #ifndef  CLIB_WB_PROTOS_H
  2. #define  CLIB_WB_PROTOS_H
  3. /*
  4. **    $Filename: clib/wb_protos.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 30.156 $
  7. **    $Date: 1995/01/11 05:18:13 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. /* "workbench.library" */
  15. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  16. #ifndef  EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19. #ifndef  WORKBENCH_WORKBENCH_H
  20. #include <workbench/workbench.h>
  21. #endif
  22. #ifndef  INTUITION_INTUITION_H
  23. #include <intuition/intuition.h>
  24. #endif
  25. #ifndef  UTILITY_TAGITEM_H
  26. #include <utility/tagitem.h>
  27. #endif
  28. /**/
  29. /**/
  30. /**/
  31. /**/
  32. /**/
  33. struct AppWindow *AddAppWindowA( unsigned long id, unsigned long userdata,
  34.     struct Window *window, struct MsgPort *msgport,
  35.     struct TagItem *taglist );
  36. struct AppWindow *AddAppWindow( unsigned long id, unsigned long userdata,
  37.     struct Window *window, struct MsgPort *msgport, Tag tag1, ... );
  38. /**/
  39. BOOL RemoveAppWindow( struct AppWindow *appWindow );
  40. /**/
  41. struct AppIcon *AddAppIconA( unsigned long id, unsigned long userdata,
  42.     UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
  43.     struct DiskObject *diskobj, struct TagItem *taglist );
  44. struct AppIcon *AddAppIcon( unsigned long id, unsigned long userdata,
  45.     UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
  46.     struct DiskObject *diskobj, Tag tag1, ... );
  47. /**/
  48. BOOL RemoveAppIcon( struct AppIcon *appIcon );
  49. /**/
  50. struct AppMenuItem *AddAppMenuItemA( unsigned long id, unsigned long userdata,
  51.     UBYTE *text, struct MsgPort *msgport, struct TagItem *taglist );
  52. struct AppMenuItem *AddAppMenuItem( unsigned long id, unsigned long userdata,
  53.     UBYTE *text, struct MsgPort *msgport, Tag tag1, ... );
  54. /**/
  55. BOOL RemoveAppMenuItem( struct AppMenuItem *appMenuItem );
  56. /**/
  57. /**/
  58. #endif     /* CLIB_WB_PROTOS_H */
  59.